/*
 * MARKS ATELIER - MAIN STYLESHEET
 * Architecture | Construction | Interior Design
 * Brand Colors: Gold (#c8a86b) | Dark (#141517) | Off-white (#f7f5f2)
 */

/* ============================================
   ROOT VARIABLES & GLOBAL RESETS
   ============================================ */
:root {
    --gold: #c8a86b;
    --gold-dark: #b8945a;
    --gold-light: #e8d5a8;
    --dark: #141517;
    --dark-2: #1e2023;
    --offwhite: #f7f5f2;
    --border: #e8e2d8;
    --text: #4a4a4a;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

section, [id] {
    scroll-margin-top: 130px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 110px;
    }
    [id] {
        scroll-margin-top: 110px;
    }
}

body {
    color: var(--text);
    background: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   TOPBAR STYLES
   ============================================ */
.topbar {
    background: var(--gold);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1030;
}

.topbar-info-content {
    text-align: center;
}

.topbar-info-content p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dark);
}

.topbar-info-content p img {
    margin-right: 8px;
    vertical-align: middle;
    width: 18px;
    filter: brightness(0) invert(0);
}

.topbar-info-content a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dotted var(--dark);
    transition: all 0.2s;
}

.topbar-info-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

@media (max-width: 576px) {
    .topbar-info-content p {
        font-size: 11px;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header .header-sticky {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(200, 168, 107, 0.15);
    position: relative;
    z-index: 1025;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.25s;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar-brand h4 {
    color: #fff !important;
}

.navbar-brand p {
    color: var(--gold) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-default,
a.btn-default {
    background: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
}

.btn-default:hover,
a.btn-default:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    margin-bottom: 30px;
}

.section-title h3,
.section-title .sub-title {
    color: var(--gold) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title-content p {
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 21, 23, 0.78) 0%, rgba(20, 21, 23, 0.45) 60%, rgba(200, 168, 107, 0.18) 100%) !important;
    z-index: 1;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .section-title h3 {
    color: var(--gold) !important;
}

.hero-content .section-title h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content .section-title p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content-btn {
    margin-top: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    border: 2px solid var(--gold) !important;
    background: transparent !important;
    opacity: 1 !important;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

@media (max-width: 768px) {
    .hero-content .section-title h1 {
        font-size: 36px;
    }
    .hero-content .section-title p {
        font-size: 16px;
    }
}

/* ============================================
   SCROLLING TICKER
   ============================================ */
.our-scrolling-ticker {
    background: var(--dark) !important;
    border-top: 1px solid rgba(200, 168, 107, 0.2);
    border-bottom: 1px solid rgba(200, 168, 107, 0.2);
    overflow: hidden;
    padding: 15px 0;
}

.scrolling-ticker-box {
    display: flex;
    animation: scrollTicker 30s linear infinite;
    white-space: nowrap;
}

.scrolling-content {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.scrolling-content span {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.scrolling-content img {
    filter: invert(72%) sepia(45%) saturate(500%) hue-rotate(5deg) brightness(95%);
    width: 16px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-us.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.about-us .section-title-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-us ul li {
    color: var(--text);
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us ul li i {
    color: var(--gold) !important;
    font-size: 18px;
}

.thumbnail-image img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.thumbnail-image img:hover {
    transform: scale(1.02);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.our-services {
    background: #fff;
    padding: 80px 0;
}

.service-box {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
    margin-bottom: 30px;
}

.service-box:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 12px 40px rgba(200, 168, 107, 0.18);
    transform: translateY(-4px);
}

.service-box-header {
    padding: 24px 24px 16px;
    background: #fff;
}

.service-box-tag a {
    color: var(--gold) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}

.service-box-title h3 {
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}

.service-box-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.our-expertise.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.our-expertise img {
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.our-expertise img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(200, 168, 107, 0.25);
    border-color: var(--gold);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    background: #fff;
    padding: 80px 0;
}

.why-choose-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-item:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 168, 107, 0.3);
    transform: translateY(-6px);
}

.why-choose-image {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 20px;
}

.why-choose-image figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
    filter: invert(1);
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.15);
    filter: invert(72%) sepia(45%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

.why-choose-no {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.why-choose-no h3 {
    background: var(--gold);
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    letter-spacing: -0.5px;
}

.why-choose-item:hover .why-choose-no h3 {
    background: var(--dark);
    color: var(--gold);
    transform: scale(0.96);
}

.why-choose-body {
    position: relative;
    background: #fff;
    padding: 22px 20px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-choose-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.why-choose-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
}

.why-choose-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-choose-item:hover .why-choose-body::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .why-choose-no h3 {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .why-choose-body {
        padding: 16px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.cta-box.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.contact-info-card {
    background: var(--dark) !important;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    border: 1px solid rgba(200, 168, 107, 0.15);
}

.contact-info-card h4 {
    color: var(--gold) !important;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-info-card p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-card i {
    color: var(--gold) !important;
    margin-right: 10px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    height: 100%;
    border: 1px solid var(--border);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom input,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--offwhite);
    color: var(--dark);
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}

.form-group-custom textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-contact-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.05em;
}

.submit-contact-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 107, 0.35);
}

.form-message-contact {
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
}

.form-message-contact.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message-contact.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
    .contact-info-card {
        margin-bottom: 30px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark) !important;
    color: rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--gold);
    padding: 60px 0 0;
}

.main-footer .footer-links h3 {
    color: var(--gold) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.main-footer .footer-links ul {
    padding: 0;
    list-style: none;
}

.main-footer .footer-links ul li {
    margin-bottom: 10px;
}

.main-footer .footer-links ul li a {
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
}

.main-footer .footer-links ul li a:hover {
    color: var(--gold) !important;
}

.social-links li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(200, 168, 107, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    transition: all 0.3s;
}

.social-links li a:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--dark) !important;
}

.footer-copyright {
    border-top: 1px solid rgba(200, 168, 107, 0.15);
    margin-top: 40px;
    padding: 25px 0;
}

.footer-copyright-text p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin: 0;
}

.about-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   POPUP FORM OVERLAY
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.popup-overlay.active {
    display: flex;
}

.popup-form-container {
    background: #fff;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    position: relative;
    animation: popupSlideIn 0.4s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    z-index: 10;
}

.close-popup:hover {
    color: var(--gold);
}

.popup-header {
    background: var(--dark);
    padding: 28px 30px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.popup-header h3 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.popup-header p {
    color: var(--gold);
    margin: 8px 0 0;
    font-size: 13px;
}

.popup-body {
    padding: 28px 30px;
}

.popup-form-group {
    margin-bottom: 16px;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    background: var(--offwhite);
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}

.popup-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.popup-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

.popup-submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 107, 0.3);
}

.popup-form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    display: none;
    padding: 10px;
    border-radius: 10px;
}

.popup-form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.popup-form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .popup-body {
        padding: 20px;
    }
}

/* ============================================
   TERMS & CONDITIONS PAGE STYLES
   ============================================ */
.terms-page {
    background: var(--offwhite);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.terms-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.terms-card h1 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.terms-card .last-updated {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.terms-card h2 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.terms-card h3 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.terms-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-card ul li {
    margin-bottom: 8px;
    color: var(--text);
}

.back-to-home {
    margin-top: 40px;
    text-align: center;
}

.back-to-home a {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-to-home a:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-card {
        padding: 30px 20px;
    }
    .terms-card h1 {
        font-size: 32px;
    }
    .terms-card h2 {
        font-size: 20px;
    }
}

/* ============================================
   LOADING SPINNER & UTILITIES
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(20, 21, 23, 0.3);
    border-radius: 50%;
    border-top-color: var(--dark);
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    text-align: center;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .section-row {
        margin-bottom: 40px;
    }
    
    .service-box-image img {
        height: 200px;
    }
    
    .hero-slide {
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-content .section-title h1 {
        font-size: 28px;
    }
}/*
 * MARKS ATELIER - MAIN STYLESHEET
 * Architecture | Construction | Interior Design
 * Brand Colors: Gold (#c8a86b) | Dark (#141517) | Off-white (#f7f5f2)
 */

/* ============================================
   ROOT VARIABLES & GLOBAL RESETS
   ============================================ */
:root {
    --gold: #c8a86b;
    --gold-dark: #b8945a;
    --gold-light: #e8d5a8;
    --dark: #141517;
    --dark-2: #1e2023;
    --offwhite: #f7f5f2;
    --border: #e8e2d8;
    --text: #4a4a4a;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

section, [id] {
    scroll-margin-top: 130px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 110px;
    }
    [id] {
        scroll-margin-top: 110px;
    }
}

body {
    color: var(--text);
    background: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   TOPBAR STYLES
   ============================================ */
.topbar {
    background: var(--gold);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1030;
}

.topbar-info-content {
    text-align: center;
}

.topbar-info-content p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dark);
}

.topbar-info-content p img {
    margin-right: 8px;
    vertical-align: middle;
    width: 18px;
    filter: brightness(0) invert(0);
}

.topbar-info-content a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dotted var(--dark);
    transition: all 0.2s;
}

.topbar-info-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

@media (max-width: 576px) {
    .topbar-info-content p {
        font-size: 11px;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header .header-sticky {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(200, 168, 107, 0.15);
    position: relative;
    z-index: 1025;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.25s;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar-brand h4 {
    color: #fff !important;
}

.navbar-brand p {
    color: var(--gold) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-default,
a.btn-default {
    background: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
}

.btn-default:hover,
a.btn-default:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    margin-bottom: 30px;
}

.section-title h3,
.section-title .sub-title {
    color: var(--gold) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title-content p {
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 21, 23, 0.78) 0%, rgba(20, 21, 23, 0.45) 60%, rgba(200, 168, 107, 0.18) 100%) !important;
    z-index: 1;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .section-title h3 {
    color: var(--gold) !important;
}

.hero-content .section-title h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content .section-title p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content-btn {
    margin-top: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    border: 2px solid var(--gold) !important;
    background: transparent !important;
    opacity: 1 !important;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

@media (max-width: 768px) {
    .hero-content .section-title h1 {
        font-size: 36px;
    }
    .hero-content .section-title p {
        font-size: 16px;
    }
}

/* ============================================
   SCROLLING TICKER
   ============================================ */
.our-scrolling-ticker {
    background: var(--dark) !important;
    border-top: 1px solid rgba(200, 168, 107, 0.2);
    border-bottom: 1px solid rgba(200, 168, 107, 0.2);
    overflow: hidden;
    padding: 15px 0;
}

.scrolling-ticker-box {
    display: flex;
    animation: scrollTicker 30s linear infinite;
    white-space: nowrap;
}

.scrolling-content {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.scrolling-content span {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.scrolling-content img {
    filter: invert(72%) sepia(45%) saturate(500%) hue-rotate(5deg) brightness(95%);
    width: 16px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-us.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.about-us .section-title-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-us ul li {
    color: var(--text);
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us ul li i {
    color: var(--gold) !important;
    font-size: 18px;
}

.thumbnail-image img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.thumbnail-image img:hover {
    transform: scale(1.02);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.our-services {
    background: #fff;
    padding: 80px 0;
}

.service-box {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
    margin-bottom: 30px;
}

.service-box:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 12px 40px rgba(200, 168, 107, 0.18);
    transform: translateY(-4px);
}

.service-box-header {
    padding: 24px 24px 16px;
    background: #fff;
}

.service-box-tag a {
    color: var(--gold) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}

.service-box-title h3 {
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}

.service-box-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.our-expertise.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.our-expertise img {
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.our-expertise img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(200, 168, 107, 0.25);
    border-color: var(--gold);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    background: #fff;
    padding: 80px 0;
}

.why-choose-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-item:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 168, 107, 0.3);
    transform: translateY(-6px);
}

.why-choose-image {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 20px;
}

.why-choose-image figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
    filter: invert(1);
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.15);
    filter: invert(72%) sepia(45%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

.why-choose-no {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.why-choose-no h3 {
    background: var(--gold);
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    letter-spacing: -0.5px;
}

.why-choose-item:hover .why-choose-no h3 {
    background: var(--dark);
    color: var(--gold);
    transform: scale(0.96);
}

.why-choose-body {
    position: relative;
    background: #fff;
    padding: 22px 20px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-choose-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.why-choose-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
}

.why-choose-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-choose-item:hover .why-choose-body::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .why-choose-no h3 {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .why-choose-body {
        padding: 16px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.cta-box.bg-section {
    background: var(--offwhite) !important;
    padding: 80px 0;
}

.contact-info-card {
    background: var(--dark) !important;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    border: 1px solid rgba(200, 168, 107, 0.15);
}

.contact-info-card h4 {
    color: var(--gold) !important;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-info-card p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-card i {
    color: var(--gold) !important;
    margin-right: 10px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    height: 100%;
    border: 1px solid var(--border);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom input,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--offwhite);
    color: var(--dark);
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}

.form-group-custom textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-contact-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.05em;
}

.submit-contact-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 107, 0.35);
}

.form-message-contact {
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
}

.form-message-contact.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message-contact.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
    .contact-info-card {
        margin-bottom: 30px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark) !important;
    color: rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--gold);
    padding: 60px 0 0;
}

.main-footer .footer-links h3 {
    color: var(--gold) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.main-footer .footer-links ul {
    padding: 0;
    list-style: none;
}

.main-footer .footer-links ul li {
    margin-bottom: 10px;
}

.main-footer .footer-links ul li a {
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
}

.main-footer .footer-links ul li a:hover {
    color: var(--gold) !important;
}

.social-links li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(200, 168, 107, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    transition: all 0.3s;
}

.social-links li a:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--dark) !important;
}

.footer-copyright {
    border-top: 1px solid rgba(200, 168, 107, 0.15);
    margin-top: 40px;
    padding: 25px 0;
}

.footer-copyright-text p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin: 0;
}

.about-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   POPUP FORM OVERLAY
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.popup-overlay.active {
    display: flex;
}

.popup-form-container {
    background: #fff;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    position: relative;
    animation: popupSlideIn 0.4s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    z-index: 10;
}

.close-popup:hover {
    color: var(--gold);
}

.popup-header {
    background: var(--dark);
    padding: 28px 30px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.popup-header h3 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.popup-header p {
    color: var(--gold);
    margin: 8px 0 0;
    font-size: 13px;
}

.popup-body {
    padding: 28px 30px;
}

.popup-form-group {
    margin-bottom: 16px;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    background: var(--offwhite);
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}

.popup-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.popup-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

.popup-submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 107, 0.3);
}

.popup-form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    display: none;
    padding: 10px;
    border-radius: 10px;
}

.popup-form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.popup-form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .popup-body {
        padding: 20px;
    }
}

/* ============================================
   TERMS & CONDITIONS PAGE STYLES
   ============================================ */
.terms-page {
    background: var(--offwhite);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.terms-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.terms-card h1 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.terms-card .last-updated {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.terms-card h2 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.terms-card h3 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.terms-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-card ul li {
    margin-bottom: 8px;
    color: var(--text);
}

.back-to-home {
    margin-top: 40px;
    text-align: center;
}

.back-to-home a {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-to-home a:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-card {
        padding: 30px 20px;
    }
    .terms-card h1 {
        font-size: 32px;
    }
    .terms-card h2 {
        font-size: 20px;
    }
}

/* ============================================
   LOADING SPINNER & UTILITIES
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(20, 21, 23, 0.3);
    border-radius: 50%;
    border-top-color: var(--dark);
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    text-align: center;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .section-row {
        margin-bottom: 40px;
    }
    
    .service-box-image img {
        height: 200px;
    }
    
    .hero-slide {
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-content .section-title h1 {
        font-size: 28px;
    }
}